ostree-prepare-root: Make error message capitalisation consistent
authorWilliam Manley <will@williammanley.net>
Tue, 26 Jul 2016 16:53:53 +0000 (17:53 +0100)
committerAtomic Bot <atomic-devel@projectatomic.io>
Tue, 2 Aug 2016 19:07:25 +0000 (19:07 +0000)
There seemed to be more lower case first letters so I've standardised
on that.

Closes: #403
Approved by: cgwalters

src/switchroot/ostree-prepare-root.c

index 0d5ba35e8c372aadf557c7de1e2b22f48c82723a..f469a1b926f7ad60ce94dfc39cd8e4e11d573898 100644 (file)
@@ -215,7 +215,7 @@ main(int argc, char *argv[])
    * https://bugzilla.redhat.com/show_bug.cgi?id=847418 */
   if (mount (NULL, "/", NULL, MS_REC|MS_PRIVATE, NULL) < 0)
     {
-      perrorv ("Failed to make \"/\" private mount: %m");
+      perrorv ("failed to make \"/\" private mount: %m");
       exit (EXIT_FAILURE);
     }
 
@@ -272,7 +272,7 @@ main(int argc, char *argv[])
        {
          if (mount (".", ".", NULL, MS_REMOUNT | MS_SILENT, NULL) < 0)
            {
-             perrorv ("Failed to remount rootfs writable (for overlayfs)");
+             perrorv ("failed to remount rootfs writable (for overlayfs)");
              exit (EXIT_FAILURE);
            }
        }